And actually delete it
authorMatthias Clasen <mclasen@redhat.com>
Thu, 26 May 2011 04:21:54 +0000 (00:21 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Thu, 26 May 2011 04:21:54 +0000 (00:21 -0400)
demos/pixbuf-init.c [deleted file]

diff --git a/demos/pixbuf-init.c b/demos/pixbuf-init.c
deleted file mode 100644 (file)
index 02ab765..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#include "config.h"
-#include <glib.h>
-
-#include <sys/stat.h>
-#include <stdlib.h>
-
-static gboolean
-file_exists (const char *filename)
-{
-  struct stat statbuf;
-
-  return stat (filename, &statbuf) == 0;
-}
-
-void
-pixbuf_init (void)
-{
-  if (file_exists ("../gdk-pixbuf/libpixbufloader-pnm.la"))
-    g_setenv ("GDK_PIXBUF_MODULE_FILE", "../gdk-pixbuf/loaders.cache", TRUE);
-}